home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / awksrc.zip / GAWK-D~1.14 / GAWK~3.INF (.txt) < prev    next >
GNU Info File  |  1993-10-03  |  51KB  |  939 lines

  1. This is Info file gawk.info, produced by Makeinfo-1.47 from the input
  2. file gawk.texi.
  3.    This file documents `awk', a program that you can use to select
  4. particular records in a file and perform operations upon them.
  5.    This is Edition 0.14 of `The GAWK Manual',
  6. for the 2.14 version of the GNU implementation
  7. of AWK.
  8.    Copyright (C) 1989, 1991, 1992 Free Software Foundation, Inc.
  9.    Permission is granted to make and distribute verbatim copies of this
  10. manual provided the copyright notice and this permission notice are
  11. preserved on all copies.
  12.    Permission is granted to copy and distribute modified versions of
  13. this manual under the conditions for verbatim copying, provided that
  14. the entire resulting derived work is distributed under the terms of a
  15. permission notice identical to this one.
  16.    Permission is granted to copy and distribute translations of this
  17. manual into another language, under the above conditions for modified
  18. versions, except that this permission notice may be stated in a
  19. translation approved by the Foundation.
  20. File: gawk.info,  Node: Statements/Lines,  Next: When,  Prev: Comments,  Up: Getting Started
  21. `awk' Statements versus Lines
  22. =============================
  23.    Most often, each line in an `awk' program is a separate statement or
  24. separate rule, like this:
  25.      awk '/12/  { print $0 }
  26.           /21/  { print $0 }' BBS-list inventory-shipped
  27.    But sometimes statements can be more than one line, and lines can
  28. contain several statements.  You can split a statement into multiple
  29. lines by inserting a newline after any of the following:
  30.      ,    {    ?    :    ||    &&    do    else
  31. A newline at any other point is considered the end of the statement.
  32. (Splitting lines after `?' and `:' is a minor `gawk' extension.  The
  33. `?' and `:' referred to here is the three operand conditional
  34. expression described in *Note Conditional Expressions: Conditional Exp.)
  35.    If you would like to split a single statement into two lines at a
  36. point where a newline would terminate it, you can "continue" it by
  37. ending the first line with a backslash character, `\'.  This is allowed
  38. absolutely anywhere in the statement, even in the middle of a string or
  39. regular expression.  For example:
  40.      awk '/This program is too long, so continue it\
  41.       on the next line/ { print $1 }'
  42. We have generally not used backslash continuation in the sample
  43. programs in this manual.  Since in `gawk' there is no limit on the
  44. length of a line, it is never strictly necessary; it just makes
  45. programs prettier.  We have preferred to make them even more pretty by
  46. keeping the statements short. Backslash continuation is most useful
  47. when your `awk' program is in a separate source file, instead of typed
  48. in on the command line.  You should also note that many `awk'
  49. implementations are more picky about where you may use backslash
  50. continuation.  For maximal portability of your `awk' programs, it is
  51. best not to split your lines in the middle of a regular expression or a
  52. string.
  53.    *Warning: backslash continuation does not work as described above
  54. with the C shell.*  Continuation with backslash works for `awk'
  55. programs in files, and also for one-shot programs *provided* you are
  56. using a POSIX-compliant shell, such as the Bourne shell or the
  57. Bourne-again shell.  But the C shell used on Berkeley Unix behaves
  58. differently!  There, you must use two backslashes in a row, followed by
  59. a newline.
  60.    When `awk' statements within one rule are short, you might want to
  61. put more than one of them on a line.  You do this by separating the
  62. statements with a semicolon, `;'. This also applies to the rules
  63. themselves. Thus, the previous program could have been written:
  64.      /12/ { print $0 } ; /21/ { print $0 }
  65. *Note:* the requirement that rules on the same line must be separated
  66. with a semicolon is a recent change in the `awk' language; it was done
  67. for consistency with the treatment of statements within an action.
  68. File: gawk.info,  Node: When,  Prev: Statements/Lines,  Up: Getting Started
  69. When to Use `awk'
  70. =================
  71.    You might wonder how `awk' might be useful for you.  Using additional
  72. utility programs, more advanced patterns, field separators, arithmetic
  73. statements, and other selection criteria, you can produce much more
  74. complex output.  The `awk' language is very useful for producing
  75. reports from large amounts of raw data, such as summarizing information
  76. from the output of other utility programs like `ls'. (*Note A More
  77. Complex Example: More Complex.)
  78.    Programs written with `awk' are usually much smaller than they would
  79. be in other languages.  This makes `awk' programs easy to compose and
  80. use.  Often `awk' programs can be quickly composed at your terminal,
  81. used once, and thrown away.  Since `awk' programs are interpreted, you
  82. can avoid the usually lengthy edit-compile-test-debug cycle of software
  83. development.
  84.    Complex programs have been written in `awk', including a complete
  85. retargetable assembler for 8-bit microprocessors (*note Glossary::., for
  86. more information) and a microcode assembler for a special purpose Prolog
  87. computer.  However, `awk''s capabilities are strained by tasks of such
  88. complexity.
  89.    If you find yourself writing `awk' scripts of more than, say, a few
  90. hundred lines, you might consider using a different programming
  91. language.  Emacs Lisp is a good choice if you need sophisticated string
  92. or pattern matching capabilities.  The shell is also good at string and
  93. pattern matching; in addition, it allows powerful use of the system
  94. utilities.  More conventional languages, such as C, C++, and Lisp, offer
  95. better facilities for system programming and for managing the complexity
  96. of large programs.  Programs in these languages may require more lines
  97. of source code than the equivalent `awk' programs, but they are easier
  98. to maintain and usually run more efficiently.
  99. File: gawk.info,  Node: Reading Files,  Next: Printing,  Prev: Getting Started,  Up: Top
  100. Reading Input Files
  101. *******************
  102.    In the typical `awk' program, all input is read either from the
  103. standard input (by default the keyboard, but often a pipe from another
  104. command) or from files whose names you specify on the `awk' command
  105. line.  If you specify input files, `awk' reads them in order, reading
  106. all the data from one before going on to the next.  The name of the
  107. current input file can be found in the built-in variable `FILENAME'
  108. (*note Built-in Variables::.).
  109.    The input is read in units called records, and processed by the
  110. rules one record at a time.  By default, each record is one line.  Each
  111. record is split automatically into fields, to make it more convenient
  112. for a rule to work on its parts.
  113.    On rare occasions you will need to use the `getline' command, which
  114. can do explicit input from any number of files (*note Explicit Input
  115. with `getline': Getline.).
  116. * Menu:
  117. * Records::                     Controlling how data is split into records.
  118. * Fields::                      An introduction to fields.
  119. * Non-Constant Fields::         Non-constant Field Numbers.
  120. * Changing Fields::             Changing the Contents of a Field.
  121. * Field Separators::            The field separator and how to change it.
  122. * Constant Size::               Reading constant width data.
  123. * Multiple Line::               Reading multi-line records.
  124. * Getline::                     Reading files under explicit program control
  125.                                 using the `getline' function.
  126. * Close Input::                 Closing an input file (so you can read from
  127.                                 the beginning once more).
  128. File: gawk.info,  Node: Records,  Next: Fields,  Prev: Reading Files,  Up: Reading Files
  129. How Input is Split into Records
  130. ===============================
  131.    The `awk' language divides its input into records and fields.
  132. Records are separated by a character called the "record separator". By
  133. default, the record separator is the newline character, defining a
  134. record to be a single line of text.
  135.    Sometimes you may want to use a different character to separate your
  136. records.  You can use a different character by changing the built-in
  137. variable `RS'.  The value of `RS' is a string that says how to separate
  138. records; the default value is `"\n"', the string containing just a
  139. newline character.  This is why records are, by default, single lines.
  140.    `RS' can have any string as its value, but only the first character
  141. of the string is used as the record separator.  The other characters are
  142. ignored.  `RS' is exceptional in this regard; `awk' uses the full value
  143. of all its other built-in variables.
  144.    You can change the value of `RS' in the `awk' program with the
  145. assignment operator, `=' (*note Assignment Expressions: Assignment
  146. Ops.). The new record-separator character should be enclosed in
  147. quotation marks to make a string constant.  Often the right time to do
  148. this is at the beginning of execution, before any input has been
  149. processed, so that the very first record will be read with the proper
  150. separator.  To do this, use the special `BEGIN' pattern (*note `BEGIN'
  151. and `END' Special Patterns: BEGIN/END.).  For example:
  152.      awk 'BEGIN { RS = "/" } ; { print $0 }' BBS-list
  153. changes the value of `RS' to `"/"', before reading any input. This is a
  154. string whose first character is a slash; as a result, records are
  155. separated by slashes.  Then the input file is read, and the second rule
  156. in the `awk' program (the action with no pattern) prints each record. 
  157. Since each `print' statement adds a newline at the end of its output,
  158. the effect of this `awk' program is to copy the input with each slash
  159. changed to a newline.
  160.    Another way to change the record separator is on the command line,
  161. using the variable-assignment feature (*note Invoking `awk': Command
  162. Line.).
  163.      awk '{ print $0 }' RS="/" BBS-list
  164. This sets `RS' to `/' before processing `BBS-list'.
  165.    Reaching the end of an input file terminates the current input
  166. record, even if the last character in the file is not the character in
  167. `RS'.
  168.    The empty string, `""' (a string of no characters), has a special
  169. meaning as the value of `RS': it means that records are separated only
  170. by blank lines.  *Note Multiple-Line Records: Multiple Line, for more
  171. details.
  172.    The `awk' utility keeps track of the number of records that have
  173. been read so far from the current input file.  This value is stored in a
  174. built-in variable called `FNR'.  It is reset to zero when a new file is
  175. started.  Another built-in variable, `NR', is the total number of input
  176. records read so far from all files.  It starts at zero but is never
  177. automatically reset to zero.
  178.    If you change the value of `RS' in the middle of an `awk' run, the
  179. new value is used to delimit subsequent records, but the record
  180. currently being processed (and records already processed) are not
  181. affected.
  182. File: gawk.info,  Node: Fields,  Next: Non-Constant Fields,  Prev: Records,  Up: Reading Files
  183. Examining Fields
  184. ================
  185.    When `awk' reads an input record, the record is automatically
  186. separated or "parsed" by the interpreter into chunks called "fields". 
  187. By default, fields are separated by whitespace, like words in a line.
  188. Whitespace in `awk' means any string of one or more spaces and/or tabs;
  189. other characters such as newline, formfeed, and so on, that are
  190. considered whitespace by other languages are *not* considered
  191. whitespace by `awk'.
  192.    The purpose of fields is to make it more convenient for you to refer
  193. to these pieces of the record.  You don't have to use them--you can
  194. operate on the whole record if you wish--but fields are what make
  195. simple `awk' programs so powerful.
  196.    To refer to a field in an `awk' program, you use a dollar-sign, `$',
  197. followed by the number of the field you want.  Thus, `$1' refers to the
  198. first field, `$2' to the second, and so on.  For example, suppose the
  199. following is a line of input:
  200.      This seems like a pretty nice example.
  201. Here the first field, or `$1', is `This'; the second field, or `$2', is
  202. `seems'; and so on.  Note that the last field, `$7', is `example.'. 
  203. Because there is no space between the `e' and the `.', the period is
  204. considered part of the seventh field.
  205.    No matter how many fields there are, the last field in a record can
  206. be represented by `$NF'.  So, in the example above, `$NF' would be the
  207. same as `$7', which is `example.'.  Why this works is explained below
  208. (*note Non-constant Field Numbers: Non-Constant Fields.). If you try to
  209. refer to a field beyond the last one, such as `$8' when the record has
  210. only 7 fields, you get the empty string.
  211.    Plain `NF', with no `$', is a built-in variable whose value is the
  212. number of fields in the current record.
  213.    `$0', which looks like an attempt to refer to the zeroth field, is a
  214. special case: it represents the whole input record.  This is what you
  215. would use if you weren't interested in fields.
  216.    Here are some more examples:
  217.      awk '$1 ~ /foo/ { print $0 }' BBS-list
  218. This example prints each record in the file `BBS-list' whose first
  219. field contains the string `foo'.  The operator `~' is called a
  220. "matching operator" (*note Comparison Expressions: Comparison Ops.); it
  221. tests whether a string (here, the field `$1') matches a given regular
  222. expression.
  223.    By contrast, the following example:
  224.      awk '/foo/ { print $1, $NF }' BBS-list
  225. looks for `foo' in *the entire record* and prints the first field and
  226. the last field for each input record containing a match.
  227. File: gawk.info,  Node: Non-Constant Fields,  Next: Changing Fields,  Prev: Fields,  Up: Reading Files
  228. Non-constant Field Numbers
  229. ==========================
  230.    The number of a field does not need to be a constant.  Any
  231. expression in the `awk' language can be used after a `$' to refer to a
  232. field.  The value of the expression specifies the field number.  If the
  233. value is a string, rather than a number, it is converted to a number.
  234. Consider this example:
  235.      awk '{ print $NR }'
  236. Recall that `NR' is the number of records read so far: 1 in the first
  237. record, 2 in the second, etc.  So this example prints the first field
  238. of the first record, the second field of the second record, and so on. 
  239. For the twentieth record, field number 20 is printed; most likely, the
  240. record has fewer than 20 fields, so this prints a blank line.
  241.    Here is another example of using expressions as field numbers:
  242.      awk '{ print $(2*2) }' BBS-list
  243.    The `awk' language must evaluate the expression `(2*2)' and use its
  244. value as the number of the field to print.  The `*' sign represents
  245. multiplication, so the expression `2*2' evaluates to 4. The parentheses
  246. are used so that the multiplication is done before the `$' operation;
  247. they are necessary whenever there is a binary operator in the
  248. field-number expression.  This example, then, prints the hours of
  249. operation (the fourth field) for every line of the file `BBS-list'.
  250.    If the field number you compute is zero, you get the entire record.
  251. Thus, `$(2-2)' has the same value as `$0'.  Negative field numbers are
  252. not allowed.
  253.    The number of fields in the current record is stored in the built-in
  254. variable `NF' (*note Built-in Variables::.).  The expression `$NF' is
  255. not a special feature: it is the direct consequence of evaluating `NF'
  256. and using its value as a field number.
  257. File: gawk.info,  Node: Changing Fields,  Next: Field Separators,  Prev: Non-Constant Fields,  Up: Reading Files
  258. Changing the Contents of a Field
  259. ================================
  260.    You can change the contents of a field as seen by `awk' within an
  261. `awk' program; this changes what `awk' perceives as the current input
  262. record.  (The actual input is untouched: `awk' never modifies the input
  263. file.)
  264.    Consider this example:
  265.      awk '{ $3 = $2 - 10; print $2, $3 }' inventory-shipped
  266. The `-' sign represents subtraction, so this program reassigns field
  267. three, `$3', to be the value of field two minus ten, `$2 - 10'.  (*Note
  268. Arithmetic Operators: Arithmetic Ops.) Then field two, and the new
  269. value for field three, are printed.
  270.    In order for this to work, the text in field `$2' must make sense as
  271. a number; the string of characters must be converted to a number in
  272. order for the computer to do arithmetic on it.  The number resulting
  273. from the subtraction is converted back to a string of characters which
  274. then becomes field three. *Note Conversion of Strings and Numbers:
  275. Conversion.
  276.    When you change the value of a field (as perceived by `awk'), the
  277. text of the input record is recalculated to contain the new field where
  278. the old one was.  Therefore, `$0' changes to reflect the altered field.
  279.  Thus,
  280.      awk '{ $2 = $2 - 10; print $0 }' inventory-shipped
  281. prints a copy of the input file, with 10 subtracted from the second
  282. field of each line.
  283.    You can also assign contents to fields that are out of range.  For
  284. example:
  285.      awk '{ $6 = ($5 + $4 + $3 + $2) ; print $6 }' inventory-shipped
  286. We've just created `$6', whose value is the sum of fields `$2', `$3',
  287. `$4', and `$5'.  The `+' sign represents addition.  For the file
  288. `inventory-shipped', `$6' represents the total number of parcels
  289. shipped for a particular month.
  290.    Creating a new field changes the internal `awk' copy of the current
  291. input record--the value of `$0'.  Thus, if you do `print $0' after
  292. adding a field, the record printed includes the new field, with the
  293. appropriate number of field separators between it and the previously
  294. existing fields.
  295.    This recomputation affects and is affected by several features not
  296. yet discussed, in particular, the "output field separator", `OFS',
  297. which is used to separate the fields (*note Output Separators::.), and
  298. `NF' (the number of fields; *note Examining Fields: Fields.). For
  299. example, the value of `NF' is set to the number of the highest field
  300. you create.
  301.    Note, however, that merely *referencing* an out-of-range field does
  302. *not* change the value of either `$0' or `NF'. Referencing an
  303. out-of-range field merely produces a null string.  For example:
  304.      if ($(NF+1) != "")
  305.          print "can't happen"
  306.      else
  307.          print "everything is normal"
  308. should print `everything is normal', because `NF+1' is certain to be
  309. out of range.  (*Note The `if' Statement: If Statement, for more
  310. information about `awk''s `if-else' statements.)
  311.    It is important to note that assigning to a field will change the
  312. value of `$0', but will not change the value of `NF', even when you
  313. assign the null string to a field.  For example:
  314.      echo a b c d | awk '{ OFS = ":"; $2 = "" ; print ; print NF }'
  315. prints
  316.      a::c:d
  317.      4
  318. The field is still there, it just has an empty value.  You can tell
  319. because there are two colons in a row.
  320. File: gawk.info,  Node: Field Separators,  Next: Constant Size,  Prev: Changing Fields,  Up: Reading Files
  321. Specifying how Fields are Separated
  322. ===================================
  323.    (This section is rather long; it describes one of the most
  324. fundamental operations in `awk'.  If you are a novice with `awk', we
  325. recommend that you re-read this section after you have studied the
  326. section on regular expressions, *Note Regular Expressions as Patterns:
  327. Regexp.)
  328.    The way `awk' splits an input record into fields is controlled by
  329. the "field separator", which is a single character or a regular
  330. expression.  `awk' scans the input record for matches for the
  331. separator; the fields themselves are the text between the matches.  For
  332. example, if the field separator is `oo', then the following line:
  333.      moo goo gai pan
  334. would be split into three fields: `m', ` g' and ` gai  pan'.
  335.    The field separator is represented by the built-in variable `FS'.
  336. Shell programmers take note!  `awk' does not use the name `IFS' which
  337. is used by the shell.
  338.    You can change the value of `FS' in the `awk' program with the
  339. assignment operator, `=' (*note Assignment Expressions: Assignment
  340. Ops.). Often the right time to do this is at the beginning of execution,
  341. before any input has been processed, so that the very first record will
  342. be read with the proper separator.  To do this, use the special `BEGIN'
  343. pattern (*note `BEGIN' and `END' Special Patterns: BEGIN/END.). For
  344. example, here we set the value of `FS' to the string `","':
  345.      awk 'BEGIN { FS = "," } ; { print $2 }'
  346. Given the input line,
  347.      John Q. Smith, 29 Oak St., Walamazoo, MI 42139
  348. this `awk' program extracts the string ` 29 Oak St.'.
  349.    Sometimes your input data will contain separator characters that
  350. don't separate fields the way you thought they would.  For instance, the
  351. person's name in the example we've been using might have a title or
  352. suffix attached, such as `John Q. Smith, LXIX'.  From input containing
  353. such a name:
  354.      John Q. Smith, LXIX, 29 Oak St., Walamazoo, MI 42139
  355. the previous sample program would extract ` LXIX', instead of ` 29 Oak
  356. St.'.  If you were expecting the program to print the address, you
  357. would be surprised.  So choose your data layout and separator
  358. characters carefully to prevent such problems.
  359.    As you know, by default, fields are separated by whitespace sequences
  360. (spaces and tabs), not by single spaces: two spaces in a row do not
  361. delimit an empty field.  The default value of the field separator is a
  362. string `" "' containing a single space.  If this value were interpreted
  363. in the usual way, each space character would separate fields, so two
  364. spaces in a row would make an empty field between them. The reason this
  365. does not happen is that a single space as the value of `FS' is a
  366. special case: it is taken to specify the default manner of delimiting
  367. fields.
  368.    If `FS' is any other single character, such as `","', then each
  369. occurrence of that character separates two fields.  Two consecutive
  370. occurrences delimit an empty field.  If the character occurs at the
  371. beginning or the end of the line, that too delimits an empty field.  The
  372. space character is the only single character which does not follow these
  373. rules.
  374.    More generally, the value of `FS' may be a string containing any
  375. regular expression.  Then each match in the record for the regular
  376. expression separates fields.  For example, the assignment:
  377.      FS = ", \t"
  378. makes every area of an input line that consists of a comma followed by a
  379. space and a tab, into a field separator.  (`\t' stands for a tab.)
  380.    For a less trivial example of a regular expression, suppose you want
  381. single spaces to separate fields the way single commas were used above.
  382. You can set `FS' to `"[ ]"'.  This regular expression matches a single
  383. space and nothing else.
  384.    `FS' can be set on the command line.  You use the `-F' argument to
  385. do so.  For example:
  386.      awk -F, 'PROGRAM' INPUT-FILES
  387. sets `FS' to be the `,' character.  Notice that the argument uses a
  388. capital `F'.  Contrast this with `-f', which specifies a file
  389. containing an `awk' program.  Case is significant in command options:
  390. the `-F' and `-f' options have nothing to do with each other. You can
  391. use both options at the same time to set the `FS' argument *and* get an
  392. `awk' program from a file.
  393.    The value used for the argument to `-F' is processed in exactly the
  394. same way as assignments to the built-in variable `FS'.  This means that
  395. if the field separator contains special characters, they must be escaped
  396. appropriately.  For example, to use a `\' as the field separator, you
  397. would have to type:
  398.      # same as FS = "\\"
  399.      awk -F\\\\ '...' files ...
  400. Since `\' is used for quoting in the shell, `awk' will see `-F\\'. 
  401. Then `awk' processes the `\\' for escape characters (*note Constant
  402. Expressions: Constants.), finally yielding a single `\' to be used for
  403. the field separator.
  404.    As a special case, in compatibility mode (*note Invoking `awk':
  405. Command Line.), if the argument to `-F' is `t', then `FS' is set to the
  406. tab character.  (This is because if you type `-F\t', without the quotes,
  407. at the shell, the `\' gets deleted, so `awk' figures that you really
  408. want your fields to be separated with tabs, and not `t's. Use `-v
  409. FS="t"' on the command line if you really do want to separate your
  410. fields with `t's.)
  411.    For example, let's use an `awk' program file called `baud.awk' that
  412. contains the pattern `/300/', and the action `print $1'. Here is the
  413. program:
  414.      /300/   { print $1 }
  415.    Let's also set `FS' to be the `-' character, and run the program on
  416. the file `BBS-list'.  The following command prints a list of the names
  417. of the bulletin boards that operate at 300 baud and the first three
  418. digits of their phone numbers:
  419.      awk -F- -f baud.awk BBS-list
  420. It produces this output:
  421.      aardvark     555
  422.      alpo
  423.      barfly       555
  424.      bites        555
  425.      camelot      555
  426.      core         555
  427.      fooey        555
  428.      foot         555
  429.      macfoo       555
  430.      sdace        555
  431.      sabafoo      555
  432. Note the second line of output.  If you check the original file, you
  433. will see that the second line looked like this:
  434.      alpo-net     555-3412     2400/1200/300     A
  435.    The `-' as part of the system's name was used as the field
  436. separator, instead of the `-' in the phone number that was originally
  437. intended.  This demonstrates why you have to be careful in choosing
  438. your field and record separators.
  439.    The following program searches the system password file, and prints
  440. the entries for users who have no password:
  441.      awk -F: '$2 == ""' /etc/passwd
  442. Here we use the `-F' option on the command line to set the field
  443. separator.  Note that fields in `/etc/passwd' are separated by colons. 
  444. The second field represents a user's encrypted password, but if the
  445. field is empty, that user has no password.
  446.    According to the POSIX standard, `awk' is supposed to behave as if
  447. each record is split into fields at the time that it is read. In
  448. particular, this means that you can change the value of `FS' after a
  449. record is read, but before any of the fields are referenced. The value
  450. of the fields (i.e. how they were split) should reflect the old value
  451. of `FS', not the new one.
  452.    However, many implementations of `awk' do not do this.  Instead,
  453. they defer splitting the fields until a field reference actually
  454. happens, using the *current* value of `FS'!  This behavior can be
  455. difficult to diagnose. The following example illustrates the results of
  456. the two methods. (The `sed' command prints just the first line of
  457. `/etc/passwd'.)
  458.      sed 1q /etc/passwd | awk '{ FS = ":" ; print $1 }'
  459. will usually print
  460.      root
  461. on an incorrect implementation of `awk', while `gawk' will print
  462. something like
  463.      root:nSijPlPhZZwgE:0:0:Root:/:
  464.    There is an important difference between the two cases of `FS = " "'
  465. (a single blank) and `FS = "[ \t]+"' (which is a regular expression
  466. matching one or more blanks or tabs).  For both values of `FS', fields
  467. are separated by runs of blanks and/or tabs.  However, when the value of
  468. `FS' is `" "', `awk' will strip leading and trailing whitespace from
  469. the record, and then decide where the fields are.
  470.    For example, the following expression prints `b':
  471.      echo ' a b c d ' | awk '{ print $2 }'
  472. However, the following prints `a':
  473.      echo ' a b c d ' | awk 'BEGIN { FS = "[ \t]+" } ; { print $2 }'
  474. In this case, the first field is null.
  475.    The stripping of leading and trailing whitespace also comes into
  476. play whenever `$0' is recomputed.  For instance, this pipeline
  477.      echo '   a b c d' | awk '{ print; $2 = $2; print }'
  478. produces this output:
  479.         a b c d
  480.      a b c d
  481. The first `print' statement prints the record as it was read, with
  482. leading whitespace intact.  The assignment to `$2' rebuilds `$0' by
  483. concatenating `$1' through `$NF' together, separated by the value of
  484. `OFS'.  Since the leading whitespace was ignored when finding `$1', it
  485. is not part of the new `$0'. Finally, the last `print' statement prints
  486. the new `$0'.
  487.    The following table summarizes how fields are split, based on the
  488. value of `FS'.
  489. `FS == " "'
  490.      Fields are separated by runs of whitespace.  Leading and trailing
  491.      whitespace are ignored.  This is the default.
  492. `FS == ANY SINGLE CHARACTER'
  493.      Fields are separated by each occurrence of the character.  Multiple
  494.      successive occurrences delimit empty fields, as do leading and
  495.      trailing occurrences.
  496. `FS == REGEXP'
  497.      Fields are separated by occurrences of characters that match
  498.      REGEXP. Leading and trailing matches of REGEXP delimit empty
  499.      fields.
  500. File: gawk.info,  Node: Constant Size,  Next: Multiple Line,  Prev: Field Separators,  Up: Reading Files
  501. Reading Fixed-width Data
  502. ========================
  503.    (This section discusses an advanced, experimental feature.  If you
  504. are a novice `awk' user, you may wish to skip it on the first reading.)
  505.    `gawk' 2.13 introduced a new facility for dealing with fixed-width
  506. fields with no distinctive field separator.  Data of this nature arises
  507. typically in one of at least two ways:  the input for old FORTRAN
  508. programs where numbers are run together, and the output of programs
  509. that did not anticipate the use of their output as input for other
  510. programs.
  511.    An example of the latter is a table where all the columns are lined
  512. up by the use of a variable number of spaces and *empty fields are just
  513. spaces*.  Clearly, `awk''s normal field splitting based on `FS' will
  514. not work well in this case.  (Although a portable `awk' program can use
  515. a series of `substr' calls on `$0', this is awkward and inefficient for
  516. a large number of fields.)
  517.    The splitting of an input record into fixed-width fields is
  518. specified by assigning a string containing space-separated numbers to
  519. the built-in variable `FIELDWIDTHS'.  Each number specifies the width
  520. of the field *including* columns between fields.  If you want to ignore
  521. the columns between fields, you can specify the width as a separate
  522. field that is subsequently ignored.
  523.    The following data is the output of the `w' utility.  It is useful
  524. to illustrate the use of `FIELDWIDTHS'.
  525.       10:06pm  up 21 days, 14:04,  23 users
  526.      User     tty       login  idle   JCPU   PCPU  what
  527.      hzuo     ttyV0     8:58pm            9      5  vi p24.tex
  528.      hzang    ttyV3     6:37pm    50                -csh
  529.      eklye    ttyV5     9:53pm            7      1  em thes.tex
  530.      dportein ttyV6     8:17pm  1:47                -csh
  531.      gierd    ttyD3    10:00pm     1                elm
  532.      dave     ttyD4     9:47pm            4      4  w
  533.      brent    ttyp0    26Jun91  4:46  26:46   4:41  bash
  534.      dave     ttyq4    26Jun9115days     46     46  wnewmail
  535.    The following program takes the above input, converts the idle time
  536. to number of seconds and prints out the first two fields and the
  537. calculated idle time.  (This program uses a number of `awk' features
  538. that haven't been introduced yet.)
  539.      BEGIN  { FIELDWIDTHS = "9 6 10 6 7 7 35" }
  540.      NR > 2 {
  541.          idle = $4
  542.          sub(/^  */, "", idle)   # strip leading spaces
  543.          if (idle == "") idle = 0
  544.          if (idle ~ /:/) { split(idle, t, ":"); idle = t[1] * 60 + t[2] }
  545.          if (idle ~ /days/) { idle *= 24 * 60 * 60 }
  546.      
  547.          print $1, $2, idle
  548.      }
  549.    Here is the result of running the program on the data:
  550.      hzuo      ttyV0  0
  551.      hzang     ttyV3  50
  552.      eklye     ttyV5  0
  553.      dportein  ttyV6  107
  554.      gierd     ttyD3  1
  555.      dave      ttyD4  0
  556.      brent     ttyp0  286
  557.      dave      ttyq4  1296000
  558.    Another (possibly more practical) example of fixed-width input data
  559. would be the input from a deck of balloting cards.  In some parts of
  560. the United States, voters make their choices by punching holes in
  561. computer cards.  These cards are then processed to count the votes for
  562. any particular candidate or on any particular issue.  Since a voter may
  563. choose not to vote on some issue, any column on the card may be empty. 
  564. An `awk' program for processing such data could use the `FIELDWIDTHS'
  565. feature to simplify reading the data.
  566.    This feature is still experimental, and will likely evolve over time.
  567. File: gawk.info,  Node: Multiple Line,  Next: Getline,  Prev: Constant Size,  Up: Reading Files
  568. Multiple-Line Records
  569. =====================
  570.    In some data bases, a single line cannot conveniently hold all the
  571. information in one entry.  In such cases, you can use multi-line
  572. records.
  573.    The first step in doing this is to choose your data format: when
  574. records are not defined as single lines, how do you want to define them?
  575. What should separate records?
  576.    One technique is to use an unusual character or string to separate
  577. records.  For example, you could use the formfeed character (written
  578. `\f' in `awk', as in C) to separate them, making each record a page of
  579. the file.  To do this, just set the variable `RS' to `"\f"' (a string
  580. containing the formfeed character).  Any other character could equally
  581. well be used, as long as it won't be part of the data in a record.
  582.    Another technique is to have blank lines separate records.  By a
  583. special dispensation, a null string as the value of `RS' indicates that
  584. records are separated by one or more blank lines.  If you set `RS' to
  585. the null string, a record always ends at the first blank line
  586. encountered.  And the next record doesn't start until the first nonblank
  587. line that follows--no matter how many blank lines appear in a row, they
  588. are considered one record-separator. (End of file is also considered a
  589. record separator.)
  590.    The second step is to separate the fields in the record.  One way to
  591. do this is to put each field on a separate line: to do this, just set
  592. the variable `FS' to the string `"\n"'.  (This simple regular
  593. expression matches a single newline.)
  594.    Another way to separate fields is to divide each of the lines into
  595. fields in the normal manner.  This happens by default as a result of a
  596. special feature: when `RS' is set to the null string, the newline
  597. character *always* acts as a field separator.  This is in addition to
  598. whatever field separations result from `FS'.
  599.    The original motivation for this special exception was probably so
  600. that you get useful behavior in the default case (i.e., `FS == " "').
  601. This feature can be a problem if you really don't want the newline
  602. character to separate fields, since there is no way to prevent it. 
  603. However, you can work around this by using the `split' function to
  604. break up the record manually (*note Built-in Functions for String
  605. Manipulation: String Functions.).
  606. File: gawk.info,  Node: Getline,  Next: Close Input,  Prev: Multiple Line,  Up: Reading Files
  607. Explicit Input with `getline'
  608. =============================
  609.    So far we have been getting our input files from `awk''s main input
  610. stream--either the standard input (usually your terminal) or the files
  611. specified on the command line.  The `awk' language has a special
  612. built-in command called `getline' that can be used to read input under
  613. your explicit control.
  614.    This command is quite complex and should *not* be used by beginners.
  615.  It is covered here because this is the chapter on input. The examples
  616. that follow the explanation of the `getline' command include material
  617. that has not been covered yet.  Therefore, come back and study the
  618. `getline' command *after* you have reviewed the rest of this manual and
  619. have a good knowledge of how `awk' works.
  620.    `getline' returns 1 if it finds a record, and 0 if the end of the
  621. file is encountered.  If there is some error in getting a record, such
  622. as a file that cannot be opened, then `getline' returns -1.
  623.    In the following examples, COMMAND stands for a string value that
  624. represents a shell command.
  625. `getline'
  626.      The `getline' command can be used without arguments to read input
  627.      from the current input file.  All it does in this case is read the
  628.      next input record and split it up into fields.  This is useful if
  629.      you've finished processing the current record, but you want to do
  630.      some special processing *right now* on the next record.  Here's an
  631.      example:
  632.           awk '{
  633.                if (t = index($0, "/*")) {
  634.                     if (t > 1)
  635.                          tmp = substr($0, 1, t - 1)
  636.                     else
  637.                          tmp = ""
  638.                     u = index(substr($0, t + 2), "*/")
  639.                     while (u == 0) {
  640.                          getline
  641.                          t = -1
  642.                          u = index($0, "*/")
  643.                     }
  644.                     if (u <= length($0) - 2)
  645.                          $0 = tmp substr($0, t + u + 3)
  646.                     else
  647.                          $0 = tmp
  648.                }
  649.                print $0
  650.           }'
  651.      This `awk' program deletes all C-style comments, `/* ... */', from
  652.      the input.  By replacing the `print $0' with other statements, you
  653.      could perform more complicated processing on the decommented
  654.      input, like searching for matches of a regular expression.  (This
  655.      program has a subtle problem--can you spot it?)
  656.      This form of the `getline' command sets `NF' (the number of
  657.      fields; *note Examining Fields: Fields.), `NR' (the number of
  658.      records read so far; *note How Input is Split into Records:
  659.      Records.), `FNR' (the number of records read from this input
  660.      file), and the value of `$0'.
  661.      *Note:* the new value of `$0' is used in testing the patterns of
  662.      any subsequent rules.  The original value of `$0' that triggered
  663.      the rule which executed `getline' is lost.  By contrast, the
  664.      `next' statement reads a new record but immediately begins
  665.      processing it normally, starting with the first rule in the
  666.      program.  *Note The `next' Statement: Next Statement.
  667. `getline VAR'
  668.      This form of `getline' reads a record into the variable VAR. This
  669.      is useful when you want your program to read the next record from
  670.      the current input file, but you don't want to subject the record
  671.      to the normal input processing.
  672.      For example, suppose the next line is a comment, or a special
  673.      string, and you want to read it, but you must make certain that it
  674.      won't trigger any rules.  This version of `getline' allows you to
  675.      read that line and store it in a variable so that the main
  676.      read-a-line-and-check-each-rule loop of `awk' never sees it.
  677.      The following example swaps every two lines of input.  For
  678.      example, given:
  679.           wan
  680.           tew
  681.           free
  682.           phore
  683.      it outputs:
  684.           tew
  685.           wan
  686.           phore
  687.           free
  688.      Here's the program:
  689.           awk '{
  690.                if ((getline tmp) > 0) {
  691.                     print tmp
  692.                     print $0
  693.                } else
  694.                     print $0
  695.           }'
  696.      The `getline' function used in this way sets only the variables
  697.      `NR' and `FNR' (and of course, VAR).  The record is not split into
  698.      fields, so the values of the fields (including `$0') and the value
  699.      of `NF' do not change.
  700. `getline < FILE'
  701.      This form of the `getline' function takes its input from the file
  702.      FILE.  Here FILE is a string-valued expression that specifies the
  703.      file name.  `< FILE' is called a "redirection" since it directs
  704.      input to come from a different place.
  705.      This form is useful if you want to read your input from a
  706.      particular file, instead of from the main input stream.  For
  707.      example, the following program reads its input record from the
  708.      file `foo.input' when it encounters a first field with a value
  709.      equal to 10 in the current input file.
  710.           awk '{
  711.               if ($1 == 10) {
  712.                    getline < "foo.input"
  713.                    print
  714.               } else
  715.                    print
  716.           }'
  717.      Since the main input stream is not used, the values of `NR' and
  718.      `FNR' are not changed.  But the record read is split into fields in
  719.      the normal manner, so the values of `$0' and other fields are
  720.      changed.  So is the value of `NF'.
  721.      This does not cause the record to be tested against all the
  722.      patterns in the `awk' program, in the way that would happen if the
  723.      record were read normally by the main processing loop of `awk'. 
  724.      However the new record is tested against any subsequent rules,
  725.      just as when `getline' is used without a redirection.
  726. `getline VAR < FILE'
  727.      This form of the `getline' function takes its input from the file
  728.      FILE and puts it in the variable VAR.  As above, FILE is a
  729.      string-valued expression that specifies the file from which to
  730.      read.
  731.      In this version of `getline', none of the built-in variables are
  732.      changed, and the record is not split into fields.  The only
  733.      variable changed is VAR.
  734.      For example, the following program copies all the input files to
  735.      the output, except for records that say `@include FILENAME'. Such
  736.      a record is replaced by the contents of the file FILENAME.
  737.           awk '{
  738.                if (NF == 2 && $1 == "@include") {
  739.                     while ((getline line < $2) > 0)
  740.                          print line
  741.                     close($2)
  742.                } else
  743.                     print
  744.           }'
  745.      Note here how the name of the extra input file is not built into
  746.      the program; it is taken from the data, from the second field on
  747.      the `@include' line.
  748.      The `close' function is called to ensure that if two identical
  749.      `@include' lines appear in the input, the entire specified file is
  750.      included twice.  *Note Closing Input Files and Pipes: Close Input.
  751.      One deficiency of this program is that it does not process nested
  752.      `@include' statements the way a true macro preprocessor would.
  753. `COMMAND | getline'
  754.      You can "pipe" the output of a command into `getline'.  A pipe is
  755.      simply a way to link the output of one program to the input of
  756.      another.  In this case, the string COMMAND is run as a shell
  757.      command and its output is piped into `awk' to be used as input. 
  758.      This form of `getline' reads one record from the pipe.
  759.      For example, the following program copies input to output, except
  760.      for lines that begin with `@execute', which are replaced by the
  761.      output produced by running the rest of the line as a shell command:
  762.           awk '{
  763.                if ($1 == "@execute") {
  764.                     tmp = substr($0, 10)
  765.                     while ((tmp | getline) > 0)
  766.                          print
  767.                     close(tmp)
  768.                } else
  769.                     print
  770.           }'
  771.      The `close' function is called to ensure that if two identical
  772.      `@execute' lines appear in the input, the command is run for each
  773.      one.  *Note Closing Input Files and Pipes: Close Input.
  774.      Given the input:
  775.           foo
  776.           bar
  777.           baz
  778.           @execute who
  779.           bletch
  780.      the program might produce:
  781.           foo
  782.           bar
  783.           baz
  784.           hack     ttyv0   Jul 13 14:22
  785.           hack     ttyp0   Jul 13 14:23     (gnu:0)
  786.           hack     ttyp1   Jul 13 14:23     (gnu:0)
  787.           hack     ttyp2   Jul 13 14:23     (gnu:0)
  788.           hack     ttyp3   Jul 13 14:23     (gnu:0)
  789.           bletch
  790.      Notice that this program ran the command `who' and printed the
  791.      result. (If you try this program yourself, you will get different
  792.      results, showing you who is logged in on your system.)
  793.      This variation of `getline' splits the record into fields, sets the
  794.      value of `NF' and recomputes the value of `$0'.  The values of
  795.      `NR' and `FNR' are not changed.
  796. `COMMAND | getline VAR'
  797.      The output of the command COMMAND is sent through a pipe to
  798.      `getline' and into the variable VAR.  For example, the following
  799.      program reads the current date and time into the variable
  800.      `current_time', using the `date' utility, and then prints it.
  801.           awk 'BEGIN {
  802.                "date" | getline current_time
  803.                close("date")
  804.                print "Report printed on " current_time
  805.           }'
  806.      In this version of `getline', none of the built-in variables are
  807.      changed, and the record is not split into fields.
  808. File: gawk.info,  Node: Close Input,  Prev: Getline,  Up: Reading Files
  809. Closing Input Files and Pipes
  810. =============================
  811.    If the same file name or the same shell command is used with
  812. `getline' more than once during the execution of an `awk' program, the
  813. file is opened (or the command is executed) only the first time. At
  814. that time, the first record of input is read from that file or command.
  815. The next time the same file or command is used in `getline', another
  816. record is read from it, and so on.
  817.    This implies that if you want to start reading the same file again
  818. from the beginning, or if you want to rerun a shell command (rather than
  819. reading more output from the command), you must take special steps.
  820. What you must do is use the `close' function, as follows:
  821.      close(FILENAME)
  822.      close(COMMAND)
  823.    The argument FILENAME or COMMAND can be any expression.  Its value
  824. must exactly equal the string that was used to open the file or start
  825. the command--for example, if you open a pipe with this:
  826.      "sort -r names" | getline foo
  827. then you must close it with this:
  828.      close("sort -r names")
  829.    Once this function call is executed, the next `getline' from that
  830. file or command will reopen the file or rerun the command.
  831. File: gawk.info,  Node: Printing,  Next: One-liners,  Prev: Reading Files,  Up: Top
  832. Printing Output
  833. ***************
  834.    One of the most common things that actions do is to output or "print"
  835. some or all of the input.  For simple output, use the `print'
  836. statement.  For fancier formatting use the `printf' statement. Both are
  837. described in this chapter.
  838. * Menu:
  839. * Print::                       The `print' statement.
  840. * Print Examples::              Simple examples of `print' statements.
  841. * Output Separators::           The output separators and how to change them.
  842. * OFMT::                        Controlling Numeric Output With `print'.
  843. * Printf::                      The `printf' statement.
  844. * Redirection::                 How to redirect output to multiple
  845.                                 files and pipes.
  846. * Special Files::               File name interpretation in `gawk'.
  847.                                 `gawk' allows access to
  848.                                 inherited file descriptors.
  849. File: gawk.info,  Node: Print,  Next: Print Examples,  Prev: Printing,  Up: Printing
  850. The `print' Statement
  851. =====================
  852.    The `print' statement does output with simple, standardized
  853. formatting.  You specify only the strings or numbers to be printed, in a
  854. list separated by commas.  They are output, separated by single spaces,
  855. followed by a newline.  The statement looks like this:
  856.      print ITEM1, ITEM2, ...
  857. The entire list of items may optionally be enclosed in parentheses.  The
  858. parentheses are necessary if any of the item expressions uses a
  859. relational operator; otherwise it could be confused with a redirection
  860. (*note Redirecting Output of `print' and `printf': Redirection.). The
  861. relational operators are `==', `!=', `<', `>', `>=', `<=', `~' and `!~'
  862. (*note Comparison Expressions: Comparison Ops.).
  863.    The items printed can be constant strings or numbers, fields of the
  864. current record (such as `$1'), variables, or any `awk' expressions. 
  865. The `print' statement is completely general for computing *what* values
  866. to print.  With two exceptions, you cannot specify *how* to print
  867. them--how many columns, whether to use exponential notation or not, and
  868. so on. (*Note Output Separators::, and *Note Controlling Numeric Output
  869. with `print': OFMT.) For that, you need the `printf' statement (*note
  870. Using `printf' Statements for Fancier Printing: Printf.).
  871.    The simple statement `print' with no items is equivalent to `print
  872. $0': it prints the entire current record.  To print a blank line, use
  873. `print ""', where `""' is the null, or empty, string.
  874.    To print a fixed piece of text, use a string constant such as
  875. `"Hello there"' as one item.  If you forget to use the double-quote
  876. characters, your text will be taken as an `awk' expression, and you
  877. will probably get an error.  Keep in mind that a space is printed
  878. between any two items.
  879.    Most often, each `print' statement makes one line of output.  But it
  880. isn't limited to one line.  If an item value is a string that contains a
  881. newline, the newline is output along with the rest of the string.  A
  882. single `print' can make any number of lines this way.
  883. File: gawk.info,  Node: Print Examples,  Next: Output Separators,  Prev: Print,  Up: Printing
  884. Examples of `print' Statements
  885. ==============================
  886.    Here is an example of printing a string that contains embedded
  887. newlines:
  888.      awk 'BEGIN { print "line one\nline two\nline three" }'
  889. produces output like this:
  890.      line one
  891.      line two
  892.      line three
  893.    Here is an example that prints the first two fields of each input
  894. record, with a space between them:
  895.      awk '{ print $1, $2 }' inventory-shipped
  896. Its output looks like this:
  897.      Jan 13
  898.      Feb 15
  899.      Mar 15
  900.      ...
  901.    A common mistake in using the `print' statement is to omit the comma
  902. between two items.  This often has the effect of making the items run
  903. together in the output, with no space.  The reason for this is that
  904. juxtaposing two string expressions in `awk' means to concatenate them. 
  905. For example, without the comma:
  906.      awk '{ print $1 $2 }' inventory-shipped
  907. prints:
  908.      Jan13
  909.      Feb15
  910.      Mar15
  911.      ...
  912.    Neither example's output makes much sense to someone unfamiliar with
  913. the file `inventory-shipped'.  A heading line at the beginning would
  914. make it clearer.  Let's add some headings to our table of months (`$1')
  915. and green crates shipped (`$2').  We do this using the `BEGIN' pattern
  916. (*note `BEGIN' and `END' Special Patterns: BEGIN/END.) to force the
  917. headings to be printed only once:
  918.      awk 'BEGIN {  print "Month Crates"
  919.                    print "----- ------" }
  920.                 {  print $1, $2 }' inventory-shipped
  921. Did you already guess what happens?  This program prints the following:
  922.      Month Crates
  923.      ----- ------
  924.      Jan 13
  925.      Feb 15
  926.      Mar 15
  927.      ...
  928. The headings and the table data don't line up!  We can fix this by
  929. printing some spaces between the two fields:
  930.      awk 'BEGIN { print "Month Crates"
  931.                   print "----- ------" }
  932.                 { print $1, "     ", $2 }' inventory-shipped
  933.    You can imagine that this way of lining up columns can get pretty
  934. complicated when you have many columns to fix.  Counting spaces for two
  935. or three columns can be simple, but more than this and you can get
  936. "lost" quite easily.  This is why the `printf' statement was created
  937. (*note Using `printf' Statements for Fancier Printing: Printf.); one of
  938. its specialties is lining up columns of data.
  939.